[dbo].[BAEOrderCategoryParentLookupDelete]
SQLServer
>
iMIS1521GA
>
Stored Procedures
> dbo.BAEOrderCategoryParentLookupDelete
Properties
Parameters
SQL Script
Uses
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
Parameters
Name
Data Type
Max Length (Bytes)
@OrderCategoryID
int
4
@OrderCategoryParentID
int
4
SQL Script
create
procedure
[dbo]
.
[BAEOrderCategoryParentLookupDelete]
@OrderCategoryID
as
int
,
@OrderCategoryParentID
AS
int
AS
DELETE
FROM
OrderCategoryParentLookup
WHERE
OrderCategoryID
=
@OrderCategoryID
AND
OrderCategoryParentID
=
@OrderCategoryParentID
;
GO
Uses
[dbo].[OrderCategoryParentLookup]
dbo